:root {
  --sk-size: 40px;
  --sk-color: #172C87;
}
#load {
  display: block;
  height: 100%;
  background-color: #ffffff;
  overflow: hidden;
  position: fixed;
  width: 100%;
  z-index: 9901;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
}
#load.loader-removed {
  opacity: 0;
  visibility: hidden;
}
#load .load-wrap {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-flow: column wrap;
}
.sk-pulse {
  width: calc(var(--sk-size) * 1.3);
  height: calc(var(--sk-size) * 1.3);
  background-color: var(--sk-color);
  border-radius: 100%;
  animation: sk-pulse 1.2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@keyframes sk-pulse {
  0% {
    width: calc(var(--sk-size) * 1.3);
    height: calc(var(--sk-size) * 1.3);
    transform: scale(0);
  }
  100% {
    width: calc(var(--sk-size) * 1.3);
    height: calc(var(--sk-size) * 1.3);
    transform: scale(1);
    opacity: 0;
  }
}
.sk-flow {
  width: calc(var(--sk-size) * 1.3);
  height: calc(var(--sk-size) * 1.3);
  display: flex;
  justify-content: space-between;
}
.sk-flow-dot {
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 50%;
  animation: sk-flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite both;
}
.sk-flow-dot:nth-child(1) {
  animation-delay: -0.3s;
}
.sk-flow-dot:nth-child(2) {
  animation-delay: -0.15s;
}
@keyframes sk-flow {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
@media only screen and (min-width: 1200px) {
  .header.container .row-wrap .nav-left {
    padding-right: 0;
  }
  .header.container .row-wrap .nav-right {
    padding-left: 0;
  }
}
.header {
  background-color: #fff;
}
.header .row-wrap {
  height: 100%;
  height: 50px;
  opacity: 1;
  transition: opacity 0.3s 0.7s ease-in;
}
.header .logo {
  height: 100%;
}
.header .logo a {
  display: block;
  height: 50px;
  line-height: 50px;
}
.header .logo a img {
  margin-top: 8px;
}
.header .nav_list {
  display: inline-flex;
}
.header .nav_list .hhhs-item-10 {
  padding-left: 0;
}
.header .nav_list a {
  font-family: "bahnschrift";
  font-style: normal;
  font-weight: 500;
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.15s;
  height: 50px;
  line-height: 50px;
  vertical-align: baseline;
  display: inline-block;
}
.header .nav_list .nav_list_item {
  margin: 0 30px;
  height: 100%;
  color: #fff;
  position: relative;
}
.header .nav_list .nav_list_item:hover {
  /* border-bottom: 2px solid #fff; */
}
.header .nav_list .nav_list_item:hover::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  right: 0;
}
.header .nav_list .nav_list_item:last-child {
  margin-left: 0;
}
.header .nav_list .nav_list_item.nav-other::after {
  display: none;
}
.header .nav_list .nav_list_item.nav-other .login {
  position: relative;
}
.header .nav_list .nav_list_item.nav-other .login .login-box {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: 50px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: none;
}
.header .nav_list .nav_list_item.nav-other .login .login-box span {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: -20px;
}
.header .nav_list .nav_list_item.nav-other .login .login-box span i {
  border-width: 10px;
  border-style: solid dashed dashed;
  border-color: transparent transparent #e2e2e2;
  position: absolute;
  right: 0;
  top: 0;
}
.header .nav_list .nav_list_item.nav-other .login .login-box span b {
  border-width: 10px;
  border-style: solid dashed dashed;
  border-color: transparent transparent #fff;
  position: absolute;
  right: 0;
  top: 1px;
}
.header .nav_list .nav_list_item.nav-other .login .login-box p {
  width: 200px;
  line-height: 30px;
  text-align: center;
  margin: 0;
  padding: 10px;
}
.header .nav_list .nav_list_item.nav-other .login .login-box p a.lang-item {
  line-height: 30px;
  height: 30px;
}
.header .nav_list .nav_list_item.nav-other .login .login-box p a.lang-item:hover {
  border-bottom: 2px solid #000;
}
.header .nav_list .nav_list_item.nav-other .login.on .login-box {
  display: block;
}
.header .nav_list .cascade {
  padding: 0 30px;
  color: #000000;
  position: relative;
}
.header .nav_list .cascade .cascade-list {
  display: inline-block;
  text-transform: uppercase;
}
.header .nav_list .cascade .cascade-list::after {
  content: "\f0dd";
  font-family: FontAwesome;
  font-size: 12px;
  position: absolute;
  top: -2px;
  padding-left: 2px;
  padding-right: 4px;
}
.header .nav_list .cascade .cascade-list:hover {
  /* border-bottom: 2px solid #fff; */
  color: #000000;
}
.header .nav_list .cascade:hover > .sub-menu {
  display: block;
}
.header .nav_list .cascade .sub-menu {
  display: none;
  position: absolute;
  z-index: 100;
  top: 50px;
  background-color: #fff;
  padding: 10px 0;
  width: 160px;
}
.header .nav_list .cascade .sub-menu:hover {
  display: block;
}
.header .nav_list .cascade .sub-menu .menu-item {
  height: 50px;
  line-height: 50px;
  position: relative;
}
.header .nav_list .cascade .sub-menu .menu-item a {
  display: block;
  white-space: nowrap;
  padding-right: 15px;
}
.header .nav_list .cascade .sub-menu .menu-item a:hover {
  color: #000;
}
.header .nav_list .cascade .sub-menu2 {
  display: none;
  background-color: #fff;
  right: 210px;
  top: -15px;
}
.header .nav_list .cascade .menu-item:hover .sub-menu2 {
  display: block;
}
/* Site links */
.site-links {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 50px;
  line-height: 50px;
}
.site-links .search_button {
  position: relative;
  background: none;
  color: #172C87;
  font-size: 17px;
  font-weight: 400;
  padding: 0 1px;
  min-width: 16px;
  border: none;
  box-shadow: none;
  transition: color 0.15s;
}
.site-links .search_button:hover {
  color: #000000;
  cursor: pointer;
}
.site-links .search_button:after {
  display: none;
}
.burger-wrap {
  position: relative;
  margin-left: auto;
  padding: 15px 0 15px 15px;
  display: flex;
  float: right;
  justify-content: space-between;
}
.burger-wrap .burger {
  width: 28px;
  height: 16px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.burger-wrap .burger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #172C87;
  border-radius: 9px;
  opacity: 1;
  right: 0;
  transform: rotate(0deg);
  transition: top 0.25s ease-in-out, width 0.25s ease-in-out, right 0.25s ease-in-out, transform 0.25s ease-in-out, background 0s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
.burger-wrap .burger span:nth-child(1) {
  top: 0;
}
.burger-wrap .burger span:nth-child(2) {
  top: 8px;
}
.burger-wrap .burger span:nth-child(3) {
  top: 8px;
}
.burger-wrap .burger span:nth-child(4) {
  top: 16px;
}
.burger-wrap .burger.open span {
  background: red;
}
.burger-wrap .burger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  right: 50%;
}
.burger-wrap .burger.open span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.burger-wrap .burger.open span:nth-child(3) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.burger-wrap .burger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  right: 50%;
}
.burger-wrap .burger.main-menu-link {
  align-items: flex-start;
}
/* Header search */
.header-search {
  position: absolute;
  background-color: #000;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  padding: 0;
  font-size: 22px;
  z-index: 3;
  visibility: hidden;
  transition: visibility 0s linear 0.7s;
}
.header-search .container {
  position: relative;
}
.header-search .searchform-wrapper {
  width: 100%;
  margin-top: 0;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  -webkit-backface-visibility: hidden;
}
.header-search .search-input {
  height: 50px;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  font-weight: 300;
  letter-spacing: 0.02em;
  border-radius: 0;
  color: #bcbebf;
}
.header-search .toggle-header-search {
  width: 30px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -12px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  opacity: 0;
}
.header-search .toggle-header-search span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #667;
  top: 10px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-search .toggle-header-search span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.bg-color {
  top: 0;
  z-index: 999;
  width: 100%;
  position: relative;
  height: 50px;
  background-color: #fff;
}
.bg-color .fill-absolute {
  position: fixed;
  background-color: #fff;
  top: 0;
  width: 100%;
}
.header-search-active .header .row-wrap {
  height: 50px;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.header-search-active .header-search {
  visibility: visible;
  transition-delay: 0s;
}
.header-search-active .header-search .searchform-wrapper {
  opacity: 1;
  transition: opacity 0.7s ease-in;
}
.header-search-active .toggle-header-search {
  opacity: 1;
  transition: opacity 0.9s ease 0.3s;
}
.visible-xs-9,
.visible-sm-9 {
  width: 75%;
  float: right;
}
.visible-xs-1,
.visible-sm-1 {
  width: 8%;
  float: left;
}
.visible-xs-2 .visible-sm-2 {
  float: right;
  width: 16%;
  right: 0;
}
.site-links.justify-center {
  justify-content: center;
}
.visible-xs-9 .logo a,
.visible-sm-9 .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
}
.banner--header .banner-img {
  width: 100%;
}
.banner--header .banner-img .img {
  object-fit: cover;
  width: 100%;
  max-height: 660px;
  min-height: 500px;
}
@media only screen and (max-width: 992px) {
  #mobile-menu-bg,
  #mobile-site-navigation {
    display: block;
  }
}
#mobile-menu-bg {
  background-color: transparent;
  visibility: hidden;
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  display: none;
  right: 0;
  -webkit-transition: background-color 0.1s ease-in 0.2s, visibility 0.1s linear 0.3s;
  transition: background-color 0.1s ease-in 0.1s, visibility 0.1s linear 0.3s;
  z-index: 99998;
}
#mobile-menu-bg.mobile-menu-active {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.7);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition: background-color 0.1s ease-in 0.1s, visibility 0.1s linear 0.3s;
}
#mobile-site-navigation {
  background: #fff;
  display: none;
  position: absolute;
  width: 80%;
  min-width: 140px;
  max-width: 440px;
  height: 100%;
  top: 0;
  left: 0;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  z-index: 99999;
}
#mobile-site-navigation.mobile-menu-active {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  transform: translate(0, 0);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
}
#mobile-site-navigation .mobile-menu-header {
  width: 100%;
  display: block;
  height: 160px;
  border-bottom: 1px solid rgba(100, 100, 100, 0.1);
  margin-bottom: 20px;
  background: #111;
  background-color: #172C87;
}
#mobile-site-navigation .mobile-menu-header i {
  color: #fff;
  font-size: 24px;
  margin-left: 25px;
  margin-top: 120px;
  float: left;
  cursor: pointer;
}
#mobile-site-navigation .mobile-menu-heading {
  display: inline-block;
  color: #fff;
  font-size: 25px;
  font-weight: 400;
  margin-top: 110px;
  margin-right: 30px;
}
#mobile-site-navigation ul.menu li {
  position: relative;
}
#mobile-site-navigation ul.menu li > a {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  padding: 16px 30px 16px 10px;
  display: block;
  color: #222;
  position: relative;
  letter-spacing: 0.02em;
}
#mobile-site-navigation ul li.menu-item-has-children > a {
  width: 50%;
  width: calc(100% - 200px);
}
#mobile-site-navigation ul li.menu-item-has-children > span {
  display: block;
  padding: 10px;
  position: absolute;
  top: 6px;
  left: 18px;
  cursor: pointer;
}
#mobile-site-navigation ul li.menu-item-has-children > span:before {
  content: "\f054";
  color: #222;
  font-family: FontAwesome;
  font-size: 11px;
  line-height: 12px;
  padding-right: 1px;
  text-align: center;
  display: block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
#mobile-site-navigation ul li.menu-item-has-children.submenu-open > a {
  font-weight: 500;
}
#mobile-site-navigation ul li.menu-item-has-children.submenu-open > span:before {
  content: "\f078";
}
#mobile-site-navigation ul li.menu-item-has-children ul {
  margin-right: 30px;
  border-right: 1px solid #eee;
  overflow: hidden;
  max-height: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
#mobile-site-navigation ul li.menu-item-has-children.submenu-open > ul {
  max-height: 1000px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}
.overflow1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.overflow2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.overflow3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
footer {
  padding: 80px 0 40px 0;
  background: #000000;
}
footer .row {
  padding-bottom: 20px;
  margin-right: 0;
  margin-left: 0;
}
footer .row > div {
  padding-right: 0;
  padding-left: 0;
}
footer > div {
  color: #8b8f98;
}
footer > div .title {
  padding-top: 0 !important;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.3;
  text-align: right;
  margin-bottom: 25px;
}
footer > div a {
  color: #8b8f98;
}
footer .left > img {
  width: 100px;
  margin-bottom: 20px;
}
footer .left .img_list img {
  width: 24px;
}
footer .one .title img {
  width: 100px;
  margin-bottom: 20px;
  height: auto;
}
footer .one .link-icons a img {
  width: 24px;
  height: auto;
}
footer .one,
footer .two,
footer .three {
  margin-top: 20px;
}
footer .one > div a,
footer .two > div a,
footer .three > div a {
  text-align: right;
}
footer .item-height {
  font-size: 16px;
  padding: 5px 0;
}
@media (max-width: 992px) {
  footer .title {
    text-align: right;
  }
  footer .two > div {
    text-align: right;
  }
  footer .three > div {
    text-align: right;
  }
}
footer .desc {
  padding: 20px 0;
  color: #737373;
  text-align: center;
  font-size: 12px;
  position: relative;
  border-top: 0.5px solid #737373;
}
footer .desc > p {
  text-align: right;
}
footer .desc a {
  color: #737373;
}
footer a:hover {
  color: #04F661 !important;
}
/* Scroll to top button */
.scrollToTop {
  width: 38px;
  height: 38px;
  line-height: 36px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: fixed;
  z-index: 9999;
  bottom: -45px;
  left: 15px;
  background: #172C87;
  border-radius: 38px;
  overflow: hidden;
  transition: bottom 0.4s cubic-bezier(0.55, 0, 0.1, 1), transform 0.3s cubic-bezier(0.175, 1.275, 0.8, 1);
}
.scrollToTop:hover {
  color: #fff;
  transform: scale(1.1);
}
.scrollToTop.scrollactive {
  bottom: 15px;
}
.header.container {
  max-width: 1580px;
}
.email-main {
  margin-top: 80px;
  padding-bottom: 40px;
}
.email-main .help header {
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 57px;
  /* identical to box height, or 136% */
  color: #212529;
}
.email-main .help p.help-tips {
  font-size: 14px;
  line-height: 30px;
  margin-top: 20px;
  color: #666666;
}
.email-main .help-icons > div {
  text-align: center;
  margin-top: 94px;
}
.email-main .help-icons .help-icons-item .icons-item {
  width: 48px;
  height: 48px;
}
.email-main .help-icons .help-icons-item .help-icons-item-title {
  margin-top: 22px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  /* identical to box height, or 150% */
  text-align: center;
  color: #222;
}
.email-main .help-icons .help-icons-item .help-icons-item-tips {
  margin-top: 22px;
  max-width: 371px;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 26px;
  /* or 150% */
  text-align: center;
  color: #666677;
}
.email-main .help-icons .help-icons-item .help-icons-item-tips span {
  display: block;
}
.email-main .concat-input-wrap {
  padding-right: 15%;
}
@media only screen and (max-width: 1200px) {
  .email-main .concat-input-wrap {
    padding: 40px 15px 0;
  }
}
.email-main .concat-input-wrap p.margin-top-40 {
  margin-top: 40px;
}
.email-main .concat-input-wrap p.margin-top-50 {
  margin-top: 50px;
}
.email-main .concat-input-wrap textarea {
  overflow: auto;
  height: 147px;
}
.email-main .concat-input-wrap label,
.email-main .concat-input-wrap input[type=button],
.email-main .concat-input-wrap input[type=submit],
.email-main .concat-input-wrap button {
  cursor: pointer;
}
.email-main .concat-input-wrap input,
.email-main .concat-input-wrap textarea {
  font-size: inherit;
  border: none;
  padding: 14px 20px;
  border: 1px solid #e6e7e8;
  border-radius: 3px;
  transition: border-color 0.3s;
}
.email-main .concat-input-wrap .wpcf7 input,
.email-main .concat-input-wrap .wpcf7 textarea,
.email-main .concat-input-wrap .wpcf7 span {
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
}
.email-main .concat-input-wrap input:focus,
.email-main .concat-input-wrap textarea:focus {
  outline: 0;
  border-color: #bebebe;
}
.email-main .concat-input-wrap .wpcf7 input[type=button],
.email-main .concat-input-wrap input[type=submit],
.email-main .concat-input-wrap button {
  -webkit-appearance: button;
  box-shadow: none;
  display: inline-block;
  background-color: #172C87;
  border: none;
  border-bottom: 2px solid #172C87;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 400;
  width: auto;
  font-size: 20px;
  line-height: 34px;
  height: auto;
  padding: 13px 58px;
  text-align: center;
  border-radius: 3px;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.email-main .concat-input-wrap .wpcf7 .ajax-loader {
  visibility: hidden;
  display: inline-block;
  background-image: url('/img/ajax-loader.gif');
  width: 16px;
  height: 16px;
  border: none;
  padding: 0;
  margin-right: 20px;
  margin-top: 3px;
  vertical-align: middle;
}
.email-main .concat-input-wrap .wpcf7 .ajax-loader.is-active {
  visibility: visible;
}
.email-main .concat-input-wrap .wpcf7-response-output {
  margin-top: 20px;
  padding: 0;
  display: none;
}
.email-main .concat-input-wrap .wpcf7-response-output.wpcf7-validation-errors {
  color: #e74c3c;
  border: none;
  display: block;
}
.email-main .concat-input-wrap span.alert {
  display: none;
}
.email-main .concat-input-wrap span.wpcf7-not-valid-tip {
  color: #949799;
  padding: 0;
  display: inline-block;
}
.email-main .concat-input-wrap span.wpcf7-not-valid-tip:before {
  content: "\f00d";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  color: #e74c3c;
  margin-left: 10px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}
.email-main .concat-input-wrap .wpcf7-form .item-p > label {
  display: inline-block;
  width: 100%;
}
.email-main .concat-input-wrap .wpcf7-form .item-p > label span.input-label-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: #212121;
}
@media (min-width: 1352px) {
  .header {
    max-width: 1580px;
  }
  .container {
    max-width: 1580px;
    width: 100%;
  }
  .container > div {
    padding-right: 0px;
    padding-left: 0px;
  }
}
input.wpcf7-form-control.wpcf7-submit {
  background-color: #000 !important;
  border-bottom: 2px solid transparent!important;
}
